If using anything earlier than 1.5 CVS as of July 30, 2003
just add this hook.


mime.php
------------------------------------------------------------------------------


        unset($links);
        $attachments .= "</TD></TR>\n";
    }
+    $attachmentadd = do_hook_function('attachments_bottom',$attachments);
+    if ($attachmentadd != '')
+        $attachments = $attachmentadd;
    return $attachments;
}

function sqimap_base64_decode(&$string) {
    $string = str_replace("\r\n", "\n", $string);


------------------------------------------------------------------------------